home *** CD-ROM | disk | FTP | other *** search
/ Core Concepts in Art 2 / Core Concepts in Art (Frames of Reference)(The McGraw-Hill Companies)(2004).iso / mac / media / quiz.swf / scripts / DefineButton2_104 / BUTTONCONDACTION on(release).as next >
Text File  |  2003-10-12  |  332b  |  13 lines

  1. on(release){
  2.    var i = _root.dropChapters;
  3.    while(i < _root.howManyChapters)
  4.    {
  5.       if(_root.generatorArray[i + 1].length != 0 && _root.generatorArray[i + 1] != undefined)
  6.       {
  7.          this["chapter" + i].arrow_mc._visible = 1;
  8.          this["chapter" + i].chapter_txt._alpha = 100;
  9.       }
  10.       i++;
  11.    }
  12. }
  13.